home *** CD-ROM | disk | FTP | other *** search
- Malloc(300); @start( ("test") ("bw") );
- @testmfx(); % Read MFX Group Definitions
- % XbW Window definition for MFX Group tst
- wdw( WD01 1 1 60 40 StandardWDW ); % Get a Window
- @window/gimmicks( ("WD01") (" Program 'test' Test-Window 'WD01' (P) by XbW") ); % Get some buttons
- $MFX:=tst; % Set MFX Group Name
- $WDW:=WD01; % Set Window Name
- o( $WDW,("01") S . 1 3 9 1 Secure ); % This Object Exits XBW
- bg( $WDW,("01") . ("Exit XbW") );
- cn( raK ("@stop();") ); % Macro to Exit XbW
- eg();
- o( $WDW,("02") S T 11 3 30 1 Secure ); % This Object starts the User Program
- bg( $WDW,("02") . (" Start Program test") );
- tk( ("") ("test") ); % Program name
- cn( wbX ("tst") ); % Write MFX Group Before Start
- cn( raX ("tst") ); % Read MFX Group after End
- eg();
- o( $WDW,("05t") S . 1 5 8 1 Remark);bg( $WDW,("05t") . ("einsa") ); eg(); % Description
- o( $WDW,("05") I I 9 5 8 1 Standard);bg( $WDW,("05") . (ptr)MFX:$MFX.einsa ); eg(); % Integer Object
- o( $WDW,("06t") S . 1 6 8 1 Remark);bg( $WDW,("06t") . ("zweia") ); eg(); % Description
- o( $WDW,("06") S . 9 6 15 1 Standard); % Double Float Object
- bg( $WDW,("06") . (ptr)MFX:$MFX.zweia ); % Object Head
- ff( ("%14.7f") ("") 1 );
- eg(); % Object Body with Display Format
- o( $WDW,("07t") S . 1 7 8 1 Remark);bg( $WDW,("07t") . ("dreia") ); eg(); % Description
- o( $WDW,("07") I I 9 7 8 1 Standard);bg( $WDW,("07") . (ptr)MFX:$MFX.dreia ); eg(); % Integer Object
- o( $WDW,("08t") S . 1 8 8 1 Remark);bg( $WDW,("08t") . ("viera") ); eg(); % Description
- o( $WDW,("08") S S 9 8 40 1 Standard);bg( $WDW,("08") . (ptr)MFX:$MFX.viera ); eg(); % String Object
- MFXGroup( Read tst );
- SelectWdw( ("W001") );
- End();
-
-